home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 270_01 / t3intro.c < prev    next >
C/C++ Source or Header  |  1980-01-01  |  1KB  |  34 lines

  1.  
  2. /*
  3.      HEADER:    CUG270.04 ;
  4.      TITLE:     TTT3D Introduction subroutine;
  5.      DATE:      06/08/1988 ;
  6.      VERSION:   1.0 ;
  7.      FILENAME:  T3INTRO.C ;
  8.      SEE-ALSO:  T3.DOC;
  9.      AUTHORS:   Scott Holland;
  10. */
  11.  
  12. /* COPYRIGHT 1988  SCOTT HOLLAND */
  13.  
  14. #include <stdio.h>
  15. #include "t3global.h"
  16.  
  17. intro()
  18.   {
  19.     printf("\n");
  20.     printf("This is Three Dimensional Tic-Tac-Toe.\n\n");
  21.     printf("The purpose of the game is to get four squares in a row\n");
  22.     printf("using columns, rows, perpendiculars and diagonals.\n\n");
  23.     printf("To enter your move, enter a three digit number\n");
  24.     printf("representing the level followed by the row followed\n");
  25.     printf("by the column.\n");
  26.     printf("If you wish to skip your move on the first move to allow\n");
  27.     printf("the computer to move first, enter a zero.\n");
  28.     printf("\nIf you wish to quit at any time, type a Q.\n");
  29.     printf("\n\nType ENTER to begin.\n\n");
  30.  
  31.     while(getc(stdin) != '\n') ; /* Wait for enter */
  32.  
  33.   }
  34.